home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000093_news@columbia.edu _Tue May 1 09:45:46 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id JAA20708
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 1 May 2001 09:45:46 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA29452
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 1 May 2001 09:44:55 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: renaming during ftp
  11. Date: 1 May 2001 13:44:54 GMT
  12. Organization: Columbia University
  13. Message-ID: <9cmekm$so9$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3AEDFBAE.50CE1602@worldnet.att.net>,
  17. David L. Harfst <harfst@worldnet.att.net> wrote:
  18. : The kermit solution assumes that the remote system also has kermit.
  19. : Kermit is a cool program, when you get into scripting and the like.
  20. I think you missed the part where I said:
  21.  
  22. : > Version 7.1, which HP will pick up for HP-UX 11.20, does all this for FTP
  23. : > connections too.  It has a whole built-in, scriptable FTP client.  You can
  24. : > try it right now.  See:
  25. : > 
  26. : >   http://www.columbia.edu/kermit/ftpclient.html
  27. : > 
  28. : > and (for a tutorial on FTP scripting):
  29. : > 
  30. : >   http://www.columbia.edu/kermit/ftpscript.html
  31. : > 
  32. : > It is available for HP-UX 10.20 and every other version of HP-UX from
  33. : > 5.21 to 11.xx.
  34. :
  35. In other words, C-Kermit 7.1 *is* an FTP client, with all the scripting
  36. that it had already in place for Kermit transfers.
  37.  
  38. : ftp can be used to rename files as well, though.  Don't know how it
  39. : would work into your script but,
  40. :   put filenameX filenameY
  41. : sends filenameX and renames it to filenameY in the process.
  42. : Similarly,
  43. :   get filenameX filenameY
  44. : pulls filenameX from the remote systems and saves it as filenameY.
  45. Yes, but only one file at a time.  Kermit can do this not only for single
  46. files, but also for groups of files, on a per-file basis, with the added
  47. capacity (not found in any other FTP client to my knowledge) of performing
  48. these actions (deleting or moving the source file, renaming the source or
  49. destination file, etc) if and only if the transfer of that file succeeded.
  50.  
  51. The original poster was rather emphatic about the need to do this sort of
  52. thing for "*", not just for one file.
  53.  
  54. Anybody who is interested in FTP automation really should take a look at:
  55.  
  56.   http://www.columbia.edu/kermit/ftpscript.html
  57.  
  58. This is a new FTP client that is explicitly desiged for automated procedures.
  59.  
  60. - Frank